home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / iterat31.zip / MODULUS.FRM < prev    next >
Text File  |  1993-11-17  |  247b  |  23 lines

  1. ;Iterate function file
  2. ;by Brent Hugh
  3.  
  4. ;Window defaults 
  5. xmin=-10
  6. xmax=10
  7. ymin=-10
  8. ymax=10
  9.  
  10. ;Parameter defaults
  11. a=10
  12. b=10 
  13.  
  14. ;the function
  15. x=(x+y)/(x-y)|a
  16. y=x|b
  17.  
  18. ;the symbol | denotes modulus, i.e. x|b means x mod b 
  19.  
  20.  
  21.  
  22.  
  23.